
*/:root {
    --global--color-primary: #28b6f6;
    --global--color-primary-alt: #53c5f8;
    --global--color-primary-light: #e6f8fb;
    --global--color-primary-darken: #263967;
    --global--color-secondary: #0857de;
    --global--color-secondary-alt: #0646b2;
    --global--color-secondary-darken: #042b6f;
    --global--color-secondary-darken-alt: #032259;
    --global--color-heading-light: #1d2a4d;
    --global--color-heading: #26365e;
    --global--color-heading-darken: #435ba1;
    --global--color-body: #9094a3;
    --global--color-white-light: #f4f4f4;
    --global--color-white: #fff;
    --global--color-white-darken: #fefefe;
    --global--color-gray-light: #fefefe;
    --global--color-gray: #f9f9f9;
    --global--color-gray-darken: #e6e8eb;
    --global--font-body: "Roboto",sans-serif;
    --global--font-heading: "Montserrat",sans-serif;
    --global--font-secondary: "Heebo",sans-serif
}

.pricing .services-heading {
    font-family: var(--global--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 27px;
    color: var(--global--color-secondary-darken-alt);
    margin-bottom: 42px
}

.services {
   
}

.services .service-panel {
    width:348px;
    height:230px;
    position: relative;

    transition: .3s ease-in-out;

}


    .services .service-panel:hover .service-img {
        opacity: 1;
        visibility: visible
    }

    .services .service-panel:hover .service-shape {
        opacity: 0;
        visibility: hidden
    }

    .services .service-panel:hover .service-content .service-icon i {
        color: var(--global--color-white)
    }

    .services .service-panel:hover .service-content .service-title h3 a {
        color: var(--global--color-white)
    }

    .services .service-panel:hover .service-content .service-desc p {
        color: #f4f4f4
    }

    .services .service-panel:hover .service-content .service-list li span {
        color: var(--global--color-white)
    }

    .services .service-panel:hover .service-content .service-more .btn-square-arrow {
        background-color: #fefefe;
        color: var(--global--color-secondary-darken)
    }

        .services .service-panel:hover .service-content .service-more .btn-square-arrow i {
            color: var(--global--color-secondary-darken);
            background-color: #e6e8eb
        }

.services .service-panel .service-img {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    margin-left:18px;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    color:#fff;
    overflow: hidden
}

    .services .service-panel .service-img::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 348px;
        height: 100%;
        color: #fff;
        background-color:#2f77c1;
        opacity: 0.5;
        background-clip: content-box;
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out
    }

    .services .service-panel .service-img::after {
        content: "";
        position: absolute;
        top: 0;
        left: 18px;
        right: 0;
        width: 100%;
        height: 100%;
        color: #fff;
        z-index: 2;
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out
    }

    .services .service-panel .service-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out
    }

.services .service-panel .service-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 40px 40px;
    overflow: hidden
}



.services .service-panel .service-content .service-icon {
    position: relative;
    margin-bottom: 32px
}

    .services .service-panel .service-content .service-icon:hover i {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px)
    }

    .services .service-panel .service-content .service-icon i {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        color: #021a42;
        font-size: 70px;
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out
    }

.services .service-panel .service-content .service-title {
    margin-bottom: 15px
}

    .services .service-panel .service-content .service-title h3 {
        font-family: var(--global--font-heading);
        font-size: 21px;
        font-weight: 600;
        line-height: 32px;
        margin-bottom: 0;
        text-transform: capitalize
    }

        .services .service-panel .service-content .service-title h3 a {
            color: var(--global--color-secondary-darken);
            -webkit-transition: .3s ease-in-out;
            -o-transition: .3s ease-in-out;
            transition: .3s ease-in-out
        }

.services .service-panel .service-content .service-desc {
    margin-bottom: 17px
}

    .services .service-panel .service-content .service-desc p {
        font-family: var(--global--font-body);
        color: #9094a3;
        font-size: 15px;
        font-weight: 400;
        line-height: 25px;
        margin-bottom: 0;
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out
    }

.services .service-panel .service-content .service-list {
    margin-bottom: 25px
}

    .services .service-panel .service-content .service-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .services .service-panel .service-content .service-list li:last-child span {
            border-bottom: 0
        }

        .services .service-panel .service-content .service-list li i {
            font-size: 10px;
            color: var(--global--color-primary);
            margin-bottom: 1px;
            margin-right: 15px
        }

        .services .service-panel .service-content .service-list li span {
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1;
            padding-top: 13px;
            padding-bottom: 13px;
            text-transform: capitalize;
            font-size: 15px;
            font-family: var(--global--font-body);
            font-weight: 700;
            color: #68738e;
            border-bottom: 1px solid #e6e8eb;
            text-align: left
        }

.services .service-panel .service-content .service-more {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

    .services .service-panel .service-content .service-more .btn {
        width: 164px;
        height: 51px;
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out
    }

        .services .service-panel .service-content .service-more .btn i {
            font-size: 10px;
            -webkit-transition: .3s ease-in-out;
            -o-transition: .3s ease-in-out;
            transition: .3s ease-in-out
        }



    .services .service-panel .service-shape img {
        width: 100%
    }

.services .service-panel.service-panel-2:hover .service-img {
    opacity: 0;
    visibility: hidden
}

.services .service-panel.service-panel-2:hover .service-content::before {
    background-color: var(--global--color-secondary)
}

.services .service-panel.service-panel-2:hover .service-content .service-body .service-icon {
    background-color: var(--global--color-secondary)
}

.services .service-panel.service-panel-2:hover .service-content .service-title h3 a {
    color: var(--global--color-secondary-darken)
}

.services .service-panel.service-panel-2:hover .service-content .service-desc p {
    color: #9094a3
}

.services .service-panel.service-panel-2:hover .service-content .service-list li span {
    color: #68738e
}

.services .service-panel.service-panel-2:hover .service-content .service-more .btn-square-arrow {
    color: #fefefe;
    background-color: var(--global--color-secondary)
}

    .services .service-panel.service-panel-2:hover .service-content .service-more .btn-square-arrow i {
        background-color: var(--global--color-secondary-alt);
        color: #e6e8eb
    }

.services .service-panel.service-panel-2 .service-content {
    padding-top: 0;
    position: relative
}

    .services .service-panel.service-panel-2 .service-content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 40px;
        height: 6px;
        background-color: #021a42;
        z-index: 5;
        width: calc(100% - 40px);
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out
    }


.services .service-panel.service-panel-2 .service-content .service-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 32px
}

    .services .service-panel.service-panel-2 .service-content .service-body .service-icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 104px;
        height: 104px;
        background: #021a42;
        margin-right: 30px;
        margin-bottom: 0;
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out
    }

        .services .service-panel.service-panel-2 .service-content .service-body .service-icon i {
            font-size: 60px;
            color: var(--global--color-white)
        }

    .services .service-panel.service-panel-2 .service-content .service-body .service-title {
        margin-bottom: 0
    }

        .services .service-panel.service-panel-2 .service-content .service-body .service-title h3 {
            margin-bottom: 0
        }

.services .service-panel.service-panel-2 .service-content .service-desc {
    margin-bottom: 18px
}

.services .owl-carousel .owl-stage-outer {
    overflow: visible
}

    .services .owl-carousel .owl-stage-outer .owl-item {
        opacity: 0
    }

        .services .owl-carousel .owl-stage-outer .owl-item.active {
            opacity: 1
        }

.services.services-1 {
    margin-right:26px;
}


.services.services-1 .carousel-dots {
    position: relative
}


.services.services-2 {
    position: relative;
    overflow: visible;
    padding-bottom: 20px;
    z-index: 7
}


.services.services-2 .divider {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 4
}

    .services.services-2 .divider::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        background-color: var(--global--color-white)
    }

    .services.services-2 .divider .bg {
        background-color: var(--global--color-white);
        height: 80px
    }

.services.services-3 {
    padding-top: 0;
    padding-bottom: 100px
}


.services.services-3 .service-panel {
    margin-bottom: 30px
}

    .single-service .entry-introduction .service-heading {
        font-family: var(--global--font-heading);
        font-weight: 600;
        font-size: 24px;
        line-height: 38px;
        color: #021a42;
        margin-bottom: 22px
    }

    .single-service .entry-introduction .service-desc {
        font-family: var(--global--font-body);
        font-weight: 400;
        font-size: 16px;
        line-height: 27px;
        color: #9094a3;
        margin-bottom: 25px
    }

        .single-service .entry-introduction .service-desc:last-child {
            margin-bottom: 0
        }

    .single-service .entry-introduction .entry-video {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: 527px;
        margin-top: 31px;
        margin-bottom: 33px
    }

        .single-service .entry-introduction .entry-video .btn--video {
            background-color: var(--global--color-white);
            position: relative
        }

            .single-service .entry-introduction .entry-video .btn--video::after {
                content: "";
                height: 100%;
                width: 100%;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                background-color: transparent;
                border: 1px solid var(--global--color-white);
                border-radius: 100%;
                -webkit-transform: scale(1);
                -ms-transform: scale(1);
                transform: scale(1);
                opacity: 1;
                -webkit-animation: pulse 1s ease-out 0s infinite;
                animation: pulse 1s ease-out 0s infinite;
                z-index: -1
            }

            .single-service .entry-introduction .entry-video .btn--video i {
                color: var(--global--color-secondary-darken)
            }

.single-service .pricing-panel {
    margin-bottom: 67px
}


.single-service .entry-infos .entry-heading {
    font-family: var(--global--font-heading);
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 30px;
    color: #021a42;
    text-transform: capitalize
}

.single-service .entry-infos .entry-desc {
    font-family: var(--global--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #9094a3;
    margin-bottom: 32px
}

.single-service .core-values {
    margin-bottom: 27px
}

    .single-service .core-values .entry-value {
        padding: 46px 40px 32px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background-color: var(--global--color-white);
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
        -webkit-box-shadow: 0 5px 83px 0 rgba(9,29,62,0.07);
        box-shadow: 0 5px 83px 0 rgba(9,29,62,0.07);
        margin-bottom: 40px;
        position: relative
    }



.single-service .core-values .entry-value::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 6px;
    width: 0;
    background-color: #0855d7;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center
}

.single-service .core-values .entry-value:hover {
    -webkit-box-shadow: 0 5px 83px 0 rgba(9,29,62,0.15);
    box-shadow: 0 5px 83px 0 rgba(9,29,62,0.15)
}

    .single-service .core-values .entry-value:hover::before {
        width: calc(100% - 80px)
    }


.single-service .core-values .entry-value i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 50px;
    color: var(--global--color-secondary);
    margin-right: 30px
}


.single-service .core-values .entry-value .entry-content h5 {
    font-family: var(--global--font-heading);
    font-weight: 500;
    color: var(--global--color-secondary-darken-alt);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
    text-transform: capitalize
}

.single-service .core-values .entry-value .entry-content p {
    font-family: var(--global--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    text-transform: capitalize;
    color: #9094a3
}

.single-service .tips-info {
    margin-bottom: 64px
}

    .single-service .tips-info .prices-list {
        padding: 40px 40px 28px;
        background-color: #f4f4f4
    }



.single-service .tips-info .prices-list h6 {
    font-family: var(--global--font-heading);
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 28px;
    color: #223865;
    text-transform: capitalize
}

.single-service .tips-info .prices-list ul {
    margin-bottom: 0
}

    .single-service .tips-info .prices-list ul li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-transform: capitalize;
        font-size: 15px;
        font-weight: 700;
        font-family: var(--global--font-body);
        color: #68738e;
        text-transform: capitalize;
        border-bottom: 1px solid #dcdee2;
        margin-bottom: 14px;
        padding-bottom: 12px
    }


.single-service .tips-info .prices-list ul li .price {
    font-family: var(--global--font-body);
    font-weight: 700;
    font-size: 15px;
    color: var(--global--color-white);
    background-color: var(--global--color-primary);
    width: 45px;
    height: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.single-service .tips-info .infos h6 {
    font-family: var(--global--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 27px;
    color: var(--global--color-secondary-darken-alt);
    margin-bottom: 25px
}

.single-service .tips-info .infos p {
    font-family: var(--global--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #9094a3;
    margin-bottom: 25px
}

